| 
                
               | 
              
                
               | 
              
                @@ -0,0 +1,24 @@ 
               | 
            
            
            
              | 
                
               | 
              
                1
               | 
              
                +# -*- coding: utf-8 -*- 
               | 
            
            
            
              | 
                
               | 
              
                2
               | 
              
                +from __future__ import unicode_literals 
               | 
            
            
            
              | 
                
               | 
              
                3
               | 
              
                + 
               | 
            
            
            
              | 
                
               | 
              
                4
               | 
              
                +from django.db import models, migrations 
               | 
            
            
            
              | 
                
               | 
              
                5
               | 
              
                + 
               | 
            
            
            
              | 
                
               | 
              
                6
               | 
              
                + 
               | 
            
            
            
              | 
                
               | 
              
                7
               | 
              
                +class Migration(migrations.Migration): 
               | 
            
            
            
              | 
                
               | 
              
                8
               | 
              
                + 
               | 
            
            
            
              | 
                
               | 
              
                9
               | 
              
                +    dependencies = [ 
               | 
            
            
            
              | 
                
               | 
              
                10
               | 
              
                +        ('group', '0027_groupuserinfo_authority'),
               | 
            
            
            
              | 
                
               | 
              
                11
               | 
              
                +    ] 
               | 
            
            
            
              | 
                
               | 
              
                12
               | 
              
                + 
               | 
            
            
            
              | 
                
               | 
              
                13
               | 
              
                +    operations = [ 
               | 
            
            
            
              | 
                
               | 
              
                14
               | 
              
                +        migrations.AddField( 
               | 
            
            
            
              | 
                
               | 
              
                15
               | 
              
                +            model_name='groupinfo', 
               | 
            
            
            
              | 
                
               | 
              
                16
               | 
              
                +            name='attentions_path', 
               | 
            
            
            
              | 
                
               | 
              
                17
               | 
              
                +            field=models.CharField(help_text='\u6ce8\u610f\u4e8b\u9879\u7167\u7247\u5b58\u653e\u8def\u5f84', max_length=255, null=True, verbose_name='attentions_path', blank=True), 
               | 
            
            
            
              | 
                
               | 
              
                18
               | 
              
                +        ), 
               | 
            
            
            
              | 
                
               | 
              
                19
               | 
              
                +        migrations.AddField( 
               | 
            
            
            
              | 
                
               | 
              
                20
               | 
              
                +            model_name='groupinfo', 
               | 
            
            
            
              | 
                
               | 
              
                21
               | 
              
                +            name='schedules_path', 
               | 
            
            
            
              | 
                
               | 
              
                22
               | 
              
                +            field=models.CharField(help_text='\u884c\u7a0b\u5b89\u6392\u7167\u7247\u5b58\u653e\u8def\u5f84', max_length=255, null=True, verbose_name='schedules_path', blank=True), 
               | 
            
            
            
              | 
                
               | 
              
                23
               | 
              
                +        ), 
               | 
            
            
            
              | 
                
               | 
              
                24
               | 
              
                +    ] 
               |